From c67d426dc412e2f95074a840243800102bcbd25c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 3 Mar 2020 12:25:41 -0800 Subject: [PATCH] docs: Stop using gdk_surface_get_decorations --- docs/tools/shooter.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/tools/shooter.c b/docs/tools/shooter.c index 5074f3e8bc..8f2fff6f16 100644 --- a/docs/tools/shooter.c +++ b/docs/tools/shooter.c @@ -213,12 +213,7 @@ static guint shot_id; static gboolean window_is_csd (GdkSurface *window) { - gboolean set; - GdkWMDecoration decorations = 0; - - /* FIXME: is this accurate? */ - set = gdk_surface_get_decorations (window, &decorations); - return (set && (decorations == 0)); + return TRUE; } static gboolean -- 2.30.2